* {
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f24;
  color: #fff;
}

/* NAVBAR */
.navbar {
 background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);

}
.navbar-logo {
  height: 60px;        
  width: auto;
}

/* HERO */
/* .hero-section {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
} */

/* .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
} */

/* Optional dark overlay for readability */
.hero-section {
  min-height: 100vh;
  background: radial-gradient(circle at top right, #6a5acd, #0b0b0f 60%);
}

/* .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
} */

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
   color: #ccc;
}

.hero-subtitle {
  color: #ccc;
  margin: 20px 0;
}

/* HERO IMAGE */
.hero-img {
  max-width: 100%;
  border: none;
              
  animation: float 6s ease-in-out infinite;
}

.carousel-item img {
  pointer-events: none;     
}

@keyframes float {
  50% {
    transform: translateY(-15px);
  }
}
/* MOBILE HERO FIX */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 70px;   
  }
}
/* MOBILE HERO TEXT SIZE FIX */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;     
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }

  .hero-video {
    object-position: center;
  }
}

/* Small devices */
@media (max-width: 480px) {
  .hero-section {
    min-height: 55vh;
  }
}


/* BUTTON */
.btn-main {
  background: linear-gradient(90deg, #7f5af0, #2cb67d);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
}


/* ===============================
   ABOUT US SECTION – FINAL
================================ */


.about-section {
  background: #f9f9fb;   
  padding: 40px 0;
}

/* ABOUT US small heading */
.about-subtitle {
  color: #ff6a00;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2px; 
   font-size: 30px !important;   
   
}

/* Main title */
.about-title {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
  color: #666;
  text-align: left;
}

/* Paragraph text */
.about-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
  text-align: justify;
  text-justify: inter-word;
}

/* Image */
.about-img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(243, 217, 217, 0.12);
 
}


/* SECTIONS */
/* ===============================
   OUR SERVICES SECTION
================================ */

.services-section {
  background: linear-gradient(180deg, #120a2a, #05040a);
  padding: 70px 0;
}

/* Section heading */
.section-title {
  font-weight: 700;
  font-size: 32px;
  color: #ff6a00;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
}

/* ===============================
   SERVICE CARD (IMAGE + HOVER)
================================ */

.service-hover-card {
  position: relative;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image */
.service-hover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay content */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.25)
  );

  display: flex;
  flex-direction: column;

  justify-content: flex-end;   
  align-items: flex-start;    
  padding: 20px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}


.service-overlay h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-overlay p {
  font-size: 14px;
  line-height: 1.5;
  max-width: 240px;
  margin: 0;
  color: #eaeaea;
}

/* Hover effects */
.service-hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.2);
}

.service-hover-card:hover img {
  transform: scale(1.12);
}

.service-hover-card:hover .service-overlay {
  opacity: 1;
}
/* MOBILE VIEW – ALWAYS SHOW TEXT */
@media (max-width: 768px) {

  .always-show-mobile .service-overlay {
    opacity: 1;              
    background: linear-gradient(
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.15)
    );
  }

  .always-show-mobile img {
    transform: none !important; 
  }

}

/* ===============================
   RESPONSIVE FIXES
================================ */

@media (max-width: 991px) {
  .service-hover-card {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .service-hover-card {
    height: 220px;
  }

  .section-title {
    font-size: 26px;
  }
}

.why-us-section {
 background: linear-gradient(135deg, #f9fafc, #eef2f7);
  padding: 70px 0;
}
.why-heading {
  color: #ff9f1c;   /* 🔥 brand accent */
  font-weight: 700;
}
.why-us-section h2 {
  font-size: 42px;
  font-weight: 800;     
  color: #000000;      
  margin-bottom: 8px;
}

.why-us-section p {
  font-size: 15px;
  color: #555;
  margin: 0;
}
.experience-box {
  width: 100%;
}
.our-works-section {
 background: #eef2f7;
  padding-top: 60px !important;   
  padding-bottom: 60px !important;
}

.work-card {
  background: #1c1c1c;
  border-radius: 24px;                 /* 🔥 smooth round */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
}

.work-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.work-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: black;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
/* Hover effect */
.work-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.work-card:hover img {
  transform: scale(1.1);
}

.experience-box img {
  width: 100%;          /* 🔥 full width */
  max-width: 100%;      /* remove restriction */
  height: 320px;        /* already ok */
  object-fit: cover;
}


@media (max-width: 768px) {
  .experience-box img {
    height: 240px;
  }
}


/* PORTFOLIO */


/* CTA SECTION */
.cta-section {
  position: relative;  
  background: url("../assets/contact6-new.jpg") center/cover no-repeat;
  padding: 60px 0;
}

/* DULL OVERLAY */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);  /* adjust dullness here */
}

/* CONTENT ABOVE OVERLAY */
.cta-section .container {
  position: relative;
  z-index: 1;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}
.why-eg-section {
  background: linear-gradient(135deg, #0b0b0f, #14142a);
}

.experience-box {
  position: relative;
  display: inline-block;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #7f5af0, #2cb67d);
  color: #fff;
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.experience-badge h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

.experience-badge span {
  font-size: 14px;
  opacity: 0.9;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  transition: 0.4s;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #d1d1d1;
  margin: 0;
}

.why-card:hover {
  transform: translateY(-10px) scale(1.02);
 
}

.why-card.highlight {
  background: linear-gradient(135deg, #7f5af0, #2cb67d);
}

.why-card.highlight p,
.why-card.highlight h5 {
  color: #fff;
}
/* Gradient Variations */
.grad-one {
  background: linear-gradient(135deg, #0f4c81, #1cb5e0);
}


.grad-two {
background: linear-gradient(135deg, #7f5af0, #2cb67d);
}


.grad-three {
  background: linear-gradient(135deg, #7f5af0, #2cb67d);
}

.grad-four {
 
    background: linear-gradient(135deg, #0f4c81, #1cb5e0);
}


/* Special Highlight */
.grad-highlight {
  background: linear-gradient(135deg, #7f5af0, #2cb67d);
}

/* Keep existing hover effect */
.why-card {
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  transition: 0.4s;
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

.why-card:hover {
  transform: translateY(-12px) scale(1.03);
}



.our-works-section {
  background: #f8f9fa;
}

.work-card {
  position: relative;
  width: 100%;
 
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.work-card img {
  width: 100%;
   border:2px solid rgb(6 170 249);
  object-fit: cover;     /* IMPORTANT */
  display: block;
  transition: transform 0.6s ease;
}

.work-card:hover img {
  transform: scale(1.12);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;          /* IMPORTANT */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.75)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-overlay h5 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.work-card:hover .work-overlay h5 {
  transform: translateY(0);
}

